home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Hallo3.h < prev    next >
C/C++ Source or Header  |  1998-12-15  |  1KB  |  35 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Hallo3H
  3. #define Hallo3H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published:    // IDE-verwaltete Komponenten
  13.     
  14.     TLabel *Label1;
  15.     TButton *Button1;
  16.       TButton *Button2;
  17.     TButton *Button3;
  18.     TButton *Button4;
  19.     TButton *Button5;
  20.     TButton *Button6;
  21.     void __fastcall Button1Click(TObject *Sender);
  22.     void __fastcall Button2Click(TObject *Sender);
  23.     void __fastcall Button3Click(TObject *Sender);
  24.     void __fastcall Button4Click(TObject *Sender);
  25.     void __fastcall Button5Click(TObject *Sender);
  26.     void __fastcall Button6Click(TObject *Sender);
  27. private:    // Benutzer-Deklarationen
  28. public:        // Benutzer-Deklarationen
  29.     __fastcall TForm1(TComponent* Owner);
  30. };
  31. //---------------------------------------------------------------------------
  32. extern TForm1 *Form1;
  33. //---------------------------------------------------------------------------
  34. #endif
  35.